home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / sun4.md / scsi0.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  32 lines

  1. /*
  2.  * scsi0.h --
  3.  *
  4.  *    Declarations of interface to the Sun SCSI0 driver routines.
  5.  *
  6.  * Copyright 1989 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/sun4.md/scsi0.h,v 9.1 90/10/11 15:42:32 mendel Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _DEVSCSI0
  19. #define _DEVSCSI0
  20.  
  21. #include "devInt.h"
  22. #include "scsiHBA.h"
  23.  
  24. extern ClientData DevSCSI0Init _ARGS_ ((DevConfigController *ctrlLocPtr));
  25. extern Boolean DevSCSI0Intr _ARGS_ ((ClientData clientData));
  26. extern ScsiDevice *DevSCSI0AttachDevice _ARGS_ ((Fs_Device *devicePtr,
  27.     void (*insertProc) _ARGS_ ((List_Links *elementPtr,
  28.                                 List_Links *elementListHdrPtr))));
  29.  
  30. #endif /* _DEVSCSI0 */
  31.  
  32.